Browse: 🏠 · Solutions · Connectors · Methods · Tables · Content · Parsers · ASIM Parsers · ASIM Products · Logic Apps · 📊
| Attribute | Value |
|---|---|
| Connector ID | NordStellarPush |
| Publisher | Nord Security Inc. |
| Used in Solutions | NordStellar |
| Collection Method | CCF Push |
| Connector Definition Files | connectorDefinition.json |
| DCR Definition Files | DCR.json |
| CCF Configuration | dataConnector.json |
| CCF Capabilities | Push |
| Ingestion API | Log Ingestion API — CCF Push connectors use DCR-based Log Ingestion API |
The NordStellar connector pushes real-time threat intelligence and exposure events from the NordStellar platform into Microsoft Sentinel using the Codeless Connector Framework (CCF) Push pattern. All event types are routed to a single unified NordStellar_CL table with common columns (EventId, EventType, Module, RiskLevel, AssetType, AssetValue, Tags) extracted by the DCR's KQL transform, while type-specific payload is preserved in a dynamic Details column.
Supported event types:
Leaked Data (module: LEAKED_DATA): DATA_BREACH, COMBO_LIST, MALWARE_INFECTION, CONSUMER_CREDENTIAL
Dark Web Monitoring (module: DARK_WEB_MONITORING): DARK_WEB_FORUM_POST, DARK_WEB_TELEGRAM_POST, DARK_WEB_RANSOMWARE_POST, DARK_WEB_MARKETPLACE_POST
Domain Squatting (module: DOMAIN_SQUATTING): DOMAIN_PERMUTATION
Attack Surface (module: ATTACK_SURFACE): ATTACK_SURFACE_WEB_APPLICATION_VULNERABILITY, ATTACK_SURFACE_NETWORK_SERVICE_VULNERABILITY, ATTACK_SURFACE_DNS_VULNERABILITY
This connector ingests data into the following tables:
| Table | Transformations | Ingestion API | Lake-Only |
|---|---|---|---|
NordStellar_CL |
? | ✓ | ? |
💡 Tip: Tables with Ingestion API support allow data ingestion via the Azure Monitor Data Collector API, which also enables custom transformations during ingestion.
Resource Provider Permissions:
Custom Permissions:
⚠️ Note: These instructions were automatically generated from the connector's user interface definition file using AI and may not be fully accurate. Please verify all configuration steps in the Microsoft Sentinel portal.
1. Deploy connector resources
This connector enables NordStellar to push real-time threat intelligence and exposure events directly to Microsoft Sentinel via the Azure Monitor Ingestion API.
Clicking Deploy will create:
NordStellar_CLCustom-NordStellar and a KQL transform that promotes common fields and preserves the type-specific payload in DetailsMonitoring Metrics Publisher role assignment on the DCRThe credentials returned below are then configured in the NordStellar portal so events can be pushed securely. Deploy NordStellar Push connector resources
2. Configure NordStellar
Use the following parameters to configure the Microsoft Sentinel integration in the NordStellar portal.
TenantIdNote: The value above is dynamically provided when these instructions are presented within Microsoft Sentinel.
ApplicationIdNote: The value above is dynamically provided when these instructions are presented within Microsoft Sentinel.
ApplicationSecretNote: The value above is dynamically provided when these instructions are presented within Microsoft Sentinel.
DataCollectionEndpointNote: The value above is dynamically provided when these instructions are presented within Microsoft Sentinel.
DataCollectionRuleIdNote: The value above is dynamically provided when these instructions are presented within Microsoft Sentinel.
Custom-NordStellarNordStellar must POST a JSON array to {DCE URI}/dataCollectionRules/{DCR Immutable ID}/streams/Custom-NordStellar?api-version=2023-01-01 with an OAuth bearer token for the scope https://monitor.azure.com//.default.
Each element wraps the original webhook event in a thin envelope:
[
{
"time": "2026-04-27T10:30:00Z",
"event": {
"id": "...",
"type": "DATA_BREACH",
"module": "LEAKED_DATA",
"risk_level": "HIGH",
"date_added": "...",
"tags": ["NAME"],
"asset": { "type": "EMAIL", "value": "user@company.com" }
}
}
]
The DCR's KQL transform promotes id, type, module, risk_level, asset.type/source_type, asset.value/asset_value, tags, and the appropriate timestamp (date_added for leaked-data/dark-web/domain-permutation, detected_at for attack-surface) into typed columns. Everything else is preserved in the dynamic Details column.
3. Verify data ingestion
Confirm events are flowing from NordStellar to Sentinel. Wait 5-10 minutes after enabling the integration, then run this KQL query in your Microsoft Sentinel workspace:
NordStellar_CL
| where TimeGenerated > ago(1h)
| summarize count() by EventType, Module
| order by count_ desc
If no data appears after 15 minutes, verify the credentials in the NordStellar portal and check Azure Monitor for ingestion errors on the DCR.
Browse: 🏠 · Solutions · Connectors · Methods · Tables · Content · Parsers · ASIM Parsers · ASIM Products · Logic Apps · 📊